home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7025.txt < prev    next >
Encoding:
Text File  |  1994-04-15  |  557 b   |  21 lines

  1. GetRect(VAR x1, y1, x2, y2 : REAL);
  2.  
  3. Allows the user to create a rectangle using the mouse.
  4.  
  5. GetLine(VAR x1, y1, x2, y2 : REAL);
  6.  
  7. Allows the user to create a line using the mouse.
  8.  
  9. GetPt(VAR x, y : REAL);
  10.  
  11. Returns x, y coordinates by using the mouse. x, y are not returned until the mouse is clicked.
  12.  
  13. GetPtL(x1, y1 : REAL;  VAR x2, y2 : REAL);
  14.  
  15. Draws a line from a fixed point specified by x1, y1 to a mouse defined point. x2, y2 are not returned until the mouse is clicked
  16.  
  17. GetKeyDown(VAR aCode : INTEGER);
  18.  
  19. Pauses until the user presses a keyboard key.
  20.  
  21.